home *** CD-ROM | disk | FTP | other *** search
/ Champak 41 / Volume 41 - JOGO DISK .iso / Games / scribble.swf / scripts / DefineSprite_191 / frame_27 / DoAction.as
Text File  |  2007-02-20  |  358b  |  15 lines

  1. stop();
  2. td = 10;
  3. onEnterFrame = function()
  4. {
  5.    s = attachMovie("miniStar","ms" + td,td++);
  6.    s._x = random(550) - this._x;
  7.    s._y = random(400) - this._y;
  8.    s._xscale = random(50);
  9.    s._yscale = s._xscale;
  10.    var _loc2_ = new Color(s);
  11.    tap = Math.round(Math.random() * 16777215);
  12.    _loc2_.setRGB(tap);
  13.    s._rotation = random(360);
  14. };
  15.